.application-wrapper {
  margin-top: 30px;
  padding: 30px;
  background: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-title {
  text-align: center;
  color: #e74c3c;
  margin-bottom: 20px;
}

.franchise-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
  border-color: #e74c3c;
  outline: none;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.3);
  background-color: #fff;
}

.franchise-form textarea {
  height: 120px;
  resize: vertical;
}

.submit-button-wrapper {
  margin-top: 25px;
  text-align: center;
}

.submit-btn {
  background-color: #7B4019;
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #5c2f13;
}

.session-message {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 15px;
  border-radius: 6px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  border: 1px solid #d6e9c6;
}
